home *** CD-ROM | disk | FTP | other *** search
- /*
- ### clear an combined space (auxiliary space) window ###
- */
-
- #include <suntool/sunview.h>
- #include <suntool/canvas.h>
- void aux_clear_region(aux_i)
- int aux_i;
- {
- extern Canvas *aux_canvas;
- extern Pixwin **aux_pw;
-
- pw_writebackground(aux_pw[aux_i], 0, 0, window_get(aux_canvas[aux_i], CANVAS_WIDTH), window_get(aux_canvas[aux_i], CANVAS_HEIGHT), PIX_CLR);
- }
-
-
-